home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
snippet.exe
/
GETKEY.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-04-26
|
394 b
|
21 lines
/*
** Originally published as part of the MicroFirm Function Library
**
** Copyright 1986, S.E. Margison
** Copyright 1989, Robert B.Stout
**
** Subset version released to the public domain, 1990
*/
#include <stdio.h>
int getkey(void)
{
int i;
if ((i = (int)getch()) != 0)
return(i);
i = (int)getch();
return(i+256);
}